home *** CD-ROM | disk | FTP | other *** search
/ Aminet 35 / Aminet 35 (2000)(Schatztruhe)[!][Feb 2000].iso / Aminet / gfx / misc / gnuplot-src.lha / gnuplot-3.7.1src / gnuplot-3.7.1.lha / gnuplot-3.7.1 / docs / latextut / eg4.plt < prev    next >
Encoding:
Text File  |  1998-04-15  |  227 b   |  11 lines

  1. set terminal latex
  2. set output "eg4.tex"
  3. set format y "$%g$"
  4. set format x "$%.2f$"
  5. set title 'This is $\sin(x)$'
  6. set xlabel "This is the $x$ axis"
  7. set ylabel '$\sin(x)$'
  8. set nokey
  9. set xtics -pi, pi/4
  10. plot [-pi:pi] [-1:1] sin(x)
  11.